home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / com32 / lib / puts.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-11-10  |  147 b   |  14 lines

  1. /*
  2.  * puts.c
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. int puts(const char *s)
  8. {
  9.   if ( fputs(s, stdout) < 0 )
  10.     return -1;
  11.  
  12.   return _fwrite("\n", 1, stdout);
  13. }
  14.